 /* Blue Banner CSS Part-->*/
    
 .banner {
    background-color: #0D1A37;
    color: white;
    text-align: left;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:90%;
    height: 290px;
    
}
.banner-content {
    max-width: 60%;
}
.banner h1 {
    font-size: 5em;
    color: #b3b3b3;
    margin: 0;
}
.infinity {
    color: #FFD700;
    font-size: 1.5em;
}
.banner p {
    font-size: 1.2em;
    margin: 0;
}
.banner a {
    color: #FFD700;
    text-decoration: none;
    font-size: 1em;
}
.banner img {
    max-width: 200px;
    height: 200px;
}

/*Circular Notifications Part*/

.body-bg{
    font-family: Arial, sans-serif;
    background-color: #f5f7ff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 540px;
}
.container {
    background-color: #f5f7ff;
    padding: 20px;
    max-width: 800px;
    display: flex;
    align-items: center;
}
.grid-pattern {
    width: 150px;
    height: 150px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 5px;
    margin-right: 20px;
}
.grid-pattern div {
    width: 100%;
    height: 100%;
    background-color: transparent;
}
.grid-pattern div.filled {
    background-color: #bbc6ea;
}
.content {
    flex-grow: 1;
}
.content h2 {
    font-size: 1.5em;
    color: #333;
    margin: 0 0 20px;
}
.notification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.notification-list li {
    background-color: #ffffff;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1em;
    color: #333;
    display: flex;
    align-items: center;
}
.notification-list li::before {
    content: "→";
    margin-right: 10px;
    color: #333;
}
.know-more {
    font-size: 1em;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
}
.know-more::before {
    content: "→";
    margin-right: 5px;
}